home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / src / linux-headers-2.6.28-15 / ubuntu / squashfs / Kconfig next >
Encoding:
Text File  |  2009-09-09  |  2.0 KB  |  51 lines

  1. config SQUASHFS
  2.     tristate "SquashFS 3.3 - Squashed file system support"
  3.     select ZLIB_INFLATE
  4.     help
  5.       Saying Y here includes support for SquashFS 3.3 (a Compressed
  6.       Read-Only File System).  Squashfs is a highly compressed read-only
  7.       filesystem for Linux.  It uses zlib compression to compress both
  8.       files, inodes and directories.  Inodes in the system are very small
  9.       and all blocks are packed to minimise data overhead. Block sizes
  10.       greater than 4K are supported up to a maximum of 1 Mbytes (default
  11.       block size 128K).  SquashFS 3.3 supports 64 bit filesystems and files
  12.       (larger than 4GB), full uid/gid information, hard links and timestamps.  
  13.  
  14.       Squashfs is intended for general read-only filesystem use, for
  15.       archival use (i.e. in cases where a .tar.gz file may be used), and in
  16.       embedded systems where low overhead is needed.  Further information
  17.       and filesystem tools are available from http://squashfs.sourceforge.net.
  18.  
  19.       If you want to compile this as a module ( = code which can be
  20.       inserted in and removed from the running kernel whenever you want),
  21.       say M here and read <file:Documentation/modules.txt>.  The module
  22.       will be called squashfs.  Note that the root file system (the one
  23.       containing the directory /) cannot be compiled as a module.
  24.  
  25.       If unsure, say N.
  26.  
  27. config SQUASHFS_EMBEDDED
  28.  
  29.     bool "Additional option for memory-constrained systems" 
  30.     depends on SQUASHFS
  31.     default n
  32.     help
  33.       Saying Y here allows you to specify cache size.
  34.  
  35.       If unsure, say N.
  36.  
  37. config SQUASHFS_FRAGMENT_CACHE_SIZE
  38.     int "Number of fragments cached" if SQUASHFS_EMBEDDED
  39.     depends on SQUASHFS
  40.     default "3"
  41.     help
  42.       By default SquashFS caches the last 3 fragments read from
  43.       the filesystem.  Increasing this amount may mean SquashFS
  44.       has to re-read fragments less often from disk, at the expense
  45.       of extra system memory.  Decreasing this amount will mean
  46.       SquashFS uses less memory at the expense of extra reads from disk.
  47.  
  48.       Note there must be at least one cached fragment.  Anything
  49.       much more than three will probably not make much difference.
  50.  
  51.